a151d0556b44a59c7ca57221bb16ee2b261059a7,portal-impl/src/com/liferay/portlet/asset/service/http/AssetVocabularyServiceSoap.java,AssetVocabularyServiceSoap,deleteVocabularies,#number[]#,142

Before Change


	public static void deleteVocabularies(long[] vocabularyIds)
		throws RemoteException {
		try {
			AssetVocabularyServiceUtil.deleteVocabularies(vocabularyIds);
		}
		catch (Exception e) {
			_log.error(e, e);

After Change


		throws RemoteException {
		try {
			java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> returnValue =
				AssetVocabularyServiceUtil.deleteVocabularies(vocabularyIds,
					serviceContext);

			return com.liferay.portlet.asset.model.AssetVocabularySoap.toSoapModels(returnValue);
		}
		catch (Exception e) {
			_log.error(e, e);